home *** CD-ROM | disk | FTP | other *** search
/ InterCD 2001 May / may_2001.iso / intercd / root / Multimedia / Image / ^iShell / setup.exe / Main / ToolsCache.k < prev    next >
Encoding:
Text File  |  2001-03-26  |  1.5 KB  |  76 lines

  1. module oCachePlugin is cPlugin
  2. has
  3.     release Editor:
  4.         GetIO()
  5.             do
  6.                 result := oIOCachePlugin;
  7.             end;
  8.     end;
  9. end;
  10.  
  11. release Editor:
  12.  
  13. object oIOCacheLabel is "Cache";
  14.  
  15. object oIOCachePlugin is cIOPlugin
  16. with
  17.     AboutDialog is cUIAboutPluginDialog
  18.     with
  19.         HelpURL is "Modules/Cache.htm";
  20.         Label is oIOCacheLabel;
  21.         Text is "Cache element, events and commands.";
  22.     end;
  23.     MenuItems is [
  24.         cIOArgumentInMenuItem with Name is "Cache URL"; Value is oCacheURLArgumentIn; end,
  25.         cIOArgumentInMenuItem with Name is "Cache Count"; Value is oCacheCountArgumentIn; end
  26.     ];
  27.     ToolLines is [
  28.         cIOToolListLine 
  29.         with 
  30.             Expanded is true;
  31.             Label is oIOCreateLabel;
  32.             Lines is [
  33.                 cIOToolLine
  34.                 with
  35.                     Label is "Cache";
  36.                     Words is [
  37.                         oCacheElementCreator
  38.                     ];
  39.                 end
  40.             ];
  41.         end
  42.     ];
  43.     ElementLines is [
  44.         cIOSeedListLine 
  45.         with 
  46.             Label is oIORuntimeLabel;
  47.             Lines is [
  48.                 cIOSeedLine with IO is oIOCacheElement; end
  49.             ];
  50.         end
  51.     ];
  52.     EventLines is [
  53.         cIOSeedListLine 
  54.         with 
  55.             Label is oIORuntimeLabel;
  56.             Lines is [
  57.                 cIOSeedLine with IO is oIODiskCacheEvent; end,
  58.                 cIOSeedLine with IO is oIOMemoryCacheEvent; end
  59.             ];
  60.         end
  61.     ];
  62.     CommandLines is [
  63.         cIOSeedListLine 
  64.         with 
  65.             Label is oIORuntimeLabel;
  66.             Lines is [
  67.                 cIOSeedLine with IO is oIODiskCacheCommand; end,
  68.                 cIOSeedLine with IO is oIOMemoryCacheCommand; end,
  69.                 cIOSeedLine with IO is oIORedirectCommand; end
  70.             ];
  71.         end
  72.     ];
  73. end;
  74.  
  75. end;
  76.